home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
MacWorld 1998 September
/
Macworld (1998-09).dmg
/
Shareware World
/
Info
/
For Developers
/
MacZoop 1.8.3
/
Required Classes
/
Z Headers
/
ZErrors.h
< prev
next >
Wrap
Text File
|
1998-01-05
|
694b
|
40 lines
/*************************************************************************************************
*
*
* MacZoop - "the framework for the rest of us"
*
*
*
* ZErrors.h -- utils for throwing exceptions
*
*
*
*
*
* © 1996, Graham Cox
*
*
*
*
*************************************************************************************************/
#pragma once
#ifndef __ZERRORS__
#define __ZERRORS__
void FailNIL( void* aPtr );
void FailOSErr( OSErr theErr );
void Fail();
void FailNILRes( void* aResPtr );
void FailSilent();
void FailParamErr( OSErr theErr );
void FailNILParam( void* aPtr );
void FailMemError();
void FailResError();
void FailNILErr( void* aPtr, OSErr err );
#endif